home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / source / gen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-28  |  169 b   |  11 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. void main(void) {
  5.     int i;
  6.  
  7.     srand(0);
  8.     for (i = 0; i < 1024; i++)
  9.     printf("%ld\n", (long)rand() + 300000L);
  10. }
  11.